CallInfo

data class CallInfo(var callId: String = "", var roomId: String = "", var inviterId: String = "", var inviteeIds: LinkedHashSet<String> = LinkedHashSet(), var chatGroupId: String = "", var mediaType: CallMediaType? = null, var result: CallDirection = CallDirection.Unknown, var startTime: Long = 0, var duration: Long = 0)

Call information, including call ID, room ID, initiator, invitees, media type, call direction, start time, duration, and other complete information.

Overview

Contains complete information about a call session including call ID, room ID, initiator, invitees, media type, direction, timing, and duration.

Constructors

Link copied to clipboard
constructor(callId: String = "", roomId: String = "", inviterId: String = "", inviteeIds: LinkedHashSet<String> = LinkedHashSet(), chatGroupId: String = "", mediaType: CallMediaType? = null, result: CallDirection = CallDirection.Unknown, startTime: Long = 0, duration: Long = 0)

Properties

Link copied to clipboard

Call ID

Link copied to clipboard

Chat group ID

Link copied to clipboard

Call duration (seconds)

Link copied to clipboard

Invitee ID list

Link copied to clipboard

Initiator ID

Link copied to clipboard

Call media type

Link copied to clipboard

Call result/direction

Link copied to clipboard

Room ID

Link copied to clipboard

Call start time (timestamp, seconds)